home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / diskutil / ramled.arc / RAMD_LED.DOC next >
Text File  |  1987-02-28  |  1KB  |  39 lines

  1. This is the modified version of diskbar.prg .
  2.  
  3. It lights up the LED on DRIVE A: every time my RAMDISK (on drive G:) is
  4. accessed. To use another (or more) drive(s) replace the #6 with the
  5. proper drive number, you want RAMD_LED to react on.
  6.  
  7.     cmp.w    #6, 14(sp)        * is it the ramdisk ???
  8.  
  9. If you want to light up the LED in DRIVE B: you have to replace
  10.  
  11.     and.b    #$FD, $ff8802        * turn on DRIVE-A led ...
  12. with
  13.     and.b    #$FB, $ff8802        * turn on DRIVE-B led ...
  14.  
  15. and
  16.  
  17.     or.b    #2, $ff8802        * set bit 1
  18. with
  19.     or.b    #4, $ff8802        * set bit 2
  20.  
  21. *************************************************************************
  22.  
  23. NOTE: 
  24. -----
  25.  
  26. I spent ONLY 10 MINUTES to rewrite this stuff. So DON'T be angry about
  27. the BAD documentation - I find it crazy to write 10K of documentation
  28. for a 348 byte program ... :-)
  29.  
  30. BTW:
  31.  
  32. assemble with as68, then use relmod DIRECTLY - YOU DON'T HAVE TO LINK
  33. ANYTHING ...
  34.  
  35. Clemens Schrimpe (csch@tub.uucp = ...!pyramid!tub!csch)
  36.          (csch@db0tui6.bitnet)
  37. TWX: (West-Germany)+186672 rdt d
  38.  
  39.